﻿/* --- Right Column: Query Form --- */
        .contact-form h2 {
            margin-bottom: 20px;
            color: #333;
            font-size: 28px;
            border-bottom: 2px solid #0056b3;
            display: inline-block;
            padding-bottom: 5px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #444;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #0056b3;
            outline: none;
        }

        .form-group textarea {
            height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background-color: #0056b3;
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 18px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
            width: 100%;
        }

        .submit-btn:hover {
            background-color: #004494;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-wrapper {
                grid-template-columns: 1fr; /* Stack columns on mobile */
                padding: 20px;
            }
        }
				  .form-container {
            max-width: 500px;  
            margin: 0 auto;
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .form-header h2 {
            color: #333;
            font-weight: 700;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .control-label {
            font-weight: 600;
            color: #555;
        }
        
        .form-control {
            border-radius: 5px;
            border: 1px solid #ddd;
            padding: 12px;
            transition: border-color 0.3s;
        }
        
        .form-control:focus {
            border-color: #4e73df;
            box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
        }
        
        .btn-primary {
            background-color: #4e73df;
            border-color: #4e73df;
            font-weight: 600;
            padding: 12px 20px;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background-color: #2e59d9;
            border-color: #2653d4;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        /* Notification Popup Styles */
        .notification-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }
        
        .notification-overlay.show {
            opacity: 1;
            visibility: visible;
        }
        
        .notification-popup {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            transform: scale(0.7);
            transition: transform 0.3s;
        }
        
        .notification-overlay.show .notification-popup {
            transform: scale(1);
        }
        
        .notification-icon {
            font-size: 60px;
            color: #28a745;
            margin-bottom: 20px;
        }
        
        .notification-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }
        
        .notification-message {
            font-size: 16px;
            color: #666;
            margin-bottom: 25px;
        }
        
        .close-notification {
            background-color: #4e73df;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        
        .close-notification:hover {
            background-color: #2e59d9;
        }
        
        .loading-spinner {
            display: none;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
            margin-right: 10px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        .required-field {
            color: #e74a3b;
        }  table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
        }
        th, td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }
        th {
            background-color: #f2f2f2;
            font-weight: bold;
        }
        .additional-info {
            margin-top: 30px;
        }
        .info-item {
            margin-bottom: 10px;
        }/* --- TESTIMONIALS SECTION --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Default to align top */
}

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        border-color: var(--primary-color);
    }

.quote-mark {
    position: absolute;
    top: 20px;
    right;
    font-size: 2rem;
    color: #f4f4f4;
    opacity: 0.1;
    z-index: 0;
}

.testimonial-text {
    margin-bottom: 30px;
    margin-top: 20px; /* Space for quote mark */
    font-style: italic;
    color: #555;
    line-height: 1.8;
    z-index: 1;
    position: relative;
    padding-left: 20px;
}

    .testimonial-text::before {
        content: '\f10d';
        position: absolute;
        top: 0;
        left: 0;
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 2.5rem;
        color: var(--primary-color);
        opacity: 0.15;
    }

.stars {
    color: #FFD700;
    margin-bottom: 20px;
}

    .stars i {
        margin-right: 2px;
    }

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #eee;
}

    .client-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.client-details h4 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0;
}

.client-role {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}
 /* --- WHO WE ARE SECTION --- */
.about-split {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

    .about-text h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        line-height: 1.2;
        color: #222;
    }

    .about-text p {
        margin-bottom: 15px;
        color: #555;
        font-size: 1.05rem;
    }

.about-img-wrapper {
    flex: 1;
    position: relative;
}

    .about-img-wrapper img {
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

    .experience-badge .number {
        font-size: 2.5rem;
        font-weight: 700;
        display: block;
        line-height: 1;
    }

    .experience-badge .text {
        font-size: 0.9rem;
        font-weight: 600;
    }

/* --- FEATURES GRID (WHY CHOOSE US) --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: var(--transition);
    text-align: center;
}

    .feature-card:hover {
        transform: translateY(-5px);
        border-color: var(--primary-color);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

.feature-icon {
    width: 70px;
    height: 70px;
    background: #f4f4f4;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #222;
}

.feature-card p {
    font-size: 0.9rem;
    color: #666;
}

/* --- QUALITY POLICY --- */
.quality-section {
    background: #222;
    color: #fff;
}

.quality-box {
    max-width: 900px;
    margin: 0 auto;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
}

    .quality-box h3 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .quality-box p {
        font-size: 1.1rem;
        line-height: 1.8;
        opacity: 0.9;
    }

/* --- LEADERS SECTION --- */
.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.leader-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

    .leader-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

.leader-img {
    height: 300px;
    overflow: hidden;
}

    .leader-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.leader-info {
    padding: 25px;
}

    .leader-info h3 {
        font-size: 1.4rem;
        margin-bottom: 5px;
        color: #222;
    }

.leader-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.leader-info p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}
/* --- PROJECT GRID STYLES --- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    display: flex;
    flex-direction: column;
}

    .project-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        border-bottom: 3px solid var(--primary-color);
    }

.project-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

    .project-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.project-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

    .project-info h3 {
        font-size: 1.25rem;
        margin-bottom: 10px;
        color: #222;
    }

    .project-info p {
        font-size: 0.9rem;
        color: #666;
        line-height: 1.4;
    }

.project-highlight {
    color: var(--primary-color);
    font-weight: 700;
    display: block;
    margin-top: 5px;
}

 
/* --- ANIMATIONS --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

    .fade-in-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

        .nav-menu.active {
            display: flex;
        }

    .mobile-toggle {
        display: block;
    }

   
    .top-info {
        display: none;
    }
    /* Hide top bar on mobile for space */
}.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
/* --- HERO (STATIC IMAGE) --- */
.hero-section {
    position: relative;
    height: 80vh;
    /* Using the exact image URL from your code */
    background: url('https://sovereignsteels.com/wp-content/uploads/2024/01/sovereign-steel-factory-1024x682.jpg') center/cover no-repeat;
    background-attachment: fixed; /* Parallax Effect */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(15, 17, 21, 0.7), rgba(15, 17, 21, 0.9));
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 1s ease forwards;
}

.hero-content p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto;
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 1s ease 0.3s forwards;
}

.hero-content .highlight {
    color: var(--accent);
    font-weight: 700;
    display: block;
}

.hero-content a {
    margin-top: 30px;
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid white;
    background: transparent;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    transition: var(--transition);
    letter-spacing: 2px;
}

    .hero-content a:hover {
        background: var(--accent);
        border-color: var(--accent);
        transform: scale(1.05);
    }

    .hero-content a::before {
        content: '→';
        margin-left: 10px;
        display: inline-block;
        transition: margin-left: 10px;
    }

    .hero-content a:hover::before {
        margin-left: 20px;
    }

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- COMPARISON SECTION (Table) --- */
.comparison-section {
    padding: 80px 0;
    background: #2D2D2D;
}

.comparison-title {
    text-align: center;
    margin-bottom: 50px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    background: #2D2D2D;
    overflow: hidden;
    border-radius: 8px;
    overflow: hidden;
}

.comp-cell {
    padding: 30px;
    vertical-align: top;
}

.comp-header {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 20px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comp-peb {
    border-right: 1px solid #eee;
    position: relative;
}

.comp-conv {
    border-left: 1px solid #eee;
    position: relative;
}

/* Checkmark Colors */
.comp-peb .fa-check-circle {
    color: #27ae60;
    margin-right: 10px;
}

.comp-conv .fa-times-circle {
    color: #e74c3c;
    margin-right: 10px;
}

.comp-peb:hover {
    background: #f0fdf4;
    border-color: #27ae60;
    z-index: 2;
}

.comp-conv:hover {
    background: #fff0f0;
    border-color: #e74c3c;
}

/* --- HOW IT WORKS (MODULES) --- */
.modules-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.modules-title {
    text-align: center;
    margin-bottom: 60px;
    margin-top: 60px;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.module-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
}

    .module-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
        border-color: var(--accent);
    }

.mod-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    color: var(--primary);
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
}

    .mod-head i {
        color: var(--accent);
        font-size: 1.4rem;
    }

.mod-desc p {
    font-size: 0.95rem;
    color: #555;
    margin-top: 10px;
}

.module-stats {
    background: #f0f0f0;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eaeaea;
    padding: 8px 0;
    font-size: 0.85rem;
    color: #777;
}

    .stat-row:last-child {
        border: none;
    }

.stat-label {
    font-weight: 600;
    color: var(--text-dark);
}

.stat-value {
    font-weight: 700;
    color: var(--primary);
}

.module-list {
    padding: 20px;
    margin-top: 20px;
    background: #f8f8f8;
    border-radius: 8px;
    color: #555;
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

/* --- SIDEBAR (Right Column) --- */
.page-layout {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Main Content | Sidebar */
    gap: 40px;
    max-width: var(--container);
    margin: 80px auto;
    align-items: start;
}

.main-content {
    grid-column: 2;
}

.sidebar {
    grid-column: 1;
    position: position: sticky;
    top: 100px;
    height: fit-content;
    align-self: start;
}

.sidebar-widget {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    border-top: 5px solid var(--accent);
}

.widget-title {
    color: var(--primary);
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .widget-title::before {
        content: '';
        width: 40px;
        height: 2px;
        background: var(--accent);
        display: block;
    }

.widget-content {
    font-size: 0.95rem;
    color: #555;
}

.support-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding: 10px;
    background: #111;
    border-radius: 8px;
    transition: 0.3s;
}

    .support-item:hover {
        background: var(--primary);
    }

.support-icon {
    color: var(--accent);
    font-size: 1.2rem;
}

.support-text h4 {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    font-family: 'Roboto', sans-serif;
    text-transform: none;
}

.support-text p {
    font-size: 0.8rem;
    color: #888;
}

.video-wrapper {
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
    position: relative;
    padding-bottom: 50%; /* Keep room for Footer */
    background: #111;
}

    .video-wrapper iframe {
        width: 100%;
        aspect-ratio: 16/9;
        border: none;
    }

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    flex-direction: column;
    transition: opacity 0.3s;
}

    .play-overlay:hover {
        opacity: 0;
    }

.play-btn {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
}
/* --- ANIMATION CLASSES --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .page-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: relative;
        top: 0;
        margin-top: 40px;
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }

    .comp-header h3 {
        font-size: 1.2rem;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .comp-cell {
        display: block;
        border-bottom: 1px solid #eee;
        border-right: none;
    }

    .comp-last {
        border-bottom: none;
    }
}
/* --- BUTTONS --- */
.btn-read-more, .cta-btn, .peb-btn, .btn-enquire {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--accent-orange);
    background: transparent;
    color: var(--accent-orange);
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .btn-read-more::before, .cta-btn::before, .peb-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: var(--accent-orange);
        z-index: -1;
        transition: var(--transition);
    }

    .btn-read-more:hover::before, .cta-btn:hover::before, .peb-btn:hover::before {
        width: 100%;
    }

    .btn-read-more:hover, .cta-btn:hover, .peb-btn:hover {
        color: var(--white);
    }
/* --- STATIC HERO SECTION --- */
.hero-static {
    height: 80vh;
    background:  url('https://sovereignsteels.com/wp-content/uploads/2024/02/Lifes-Good-LG-India.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-contentabout h1 {
    font-size: 4rem;
    margin-bottom: 10px;
}

.hero-contentabout h2 {
    font-size: 2rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.hero-contentabout p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #ddd;
}

/* --- ABOUT DESCRIPTION --- */
.description-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.desc-text ul {
    margin-top: 20px;
}

.desc-text li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

    .desc-text li i {
        color: var(--accent-orange);
        margin-right: 15px;
        margin-top: 5px;
    }

.desc-img img {
    border-radius: 5px;
    box-shadow: 20px 20px 0px var(--primary-dark);
}

/* --- COMPARISON TABS --- */
.comparison-section {
    background-color: var(--primary-gray);
    color: var(--white);
}

.tabs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.tabs-header {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 15px 30px;
    color: var(--text-muted);
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

    .tab-btn.active {
        color: #fff;
    }

        .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #fff;
        }

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease; color:#fff;
}

    .tab-content.active {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

.comp-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-left: 4px solid var(--accent-orange);
}

    .comp-card h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
        display: flex; color:#fff;
        align-items: center;
        gap: 10px;
    }

/* --- INFRASTRUCTURE STATS --- */
.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.stat-box {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-bottom: 3px solid var(--accent-orange);
}

    .stat-box h3 {
        font-size: 2.5rem;
        color: var(--primary-dark);
    }

    .stat-box p {
        color: var(--text-muted);
        font-size: 0.9rem;
        text-transform: uppercase;
    }

/* --- PRODUCTION MODULES --- */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.module-card {
    background: var(--white);
    border: 1px solid #eee;
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .module-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-color: var(--accent-orange);
    }

.module-number {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 5rem;
    font-family: 'Oswald', sans-serif;
    color: rgba(0,0,0,0.03);
    z-index: 0;
    font-weight: 700;
}

.module-content {
    position: relative;
    z-index: 1;
}

    .module-content h3 {
        color: var(--accent-orange);
        margin-bottom: 20px;
        font-size: 1.4rem;
    }

    .module-content ul li {
        margin-bottom: 12px;
        font-size: 0.95rem;
        padding-left: 20px;
        position: relative;
    }

        .module-content ul li::before {
            content: '•';
            color: var(--accent-orange);
            position: absolute;
            left: 0;
            font-weight: bold;
        }
/* --- ANIMATIONS --- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

    .fade-in-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* --- TOAST NOTIFICATION --- */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    color: #333;
    padding: 15px 25px;
    border-left: 5px solid var(--accent-orange);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(150%);
    transition: transform 0.3s ease;
    z-index: 10000;
}

    .toast.show {
        transform: translateX(0);
    }

    .toast i {
        color: green;
        font-size: 1.2rem;
    }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {


    .hero-contentabout h1 {
        font-size: 2.5rem;
    }

    .description-grid,   {
        grid-template-columns: 1fr;
    }

    .tabs-header {
        flex-direction: column;
    }
}/* --- WHY CHOOSE US (BENTO GRID) --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 20px;
    padding: 40px 0;
}

.feature-box {
    background: #151515;
    padding: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    transition: 0.3s;
}

    .feature-box:hover {
        border-color: var(--accent-orange);
        transform: translateY(-5px);
    }

    .feature-box.large {
        grid-column: span 2;
    }

    .feature-box.tall {
        grid-row: span 2;
    }

    .feature-box h4 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        color: var(--accent-cyan);
    }

    .feature-box p {
        font-size: 0.95rem;
        color: var(--text-muted);
    }

.feature-bg-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.02);
    z-index: 0;
}

/* --- PEB SECTION --- */
.peb-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
}

.peb-image {
    height: 80vh;
    overflow: hidden;
}

    .peb-image img {
        height: 100%;
        object-fit: cover;
        transition: 1s;
        filter: grayscale(100%);
    }

    .peb-image:hover img {
        transform: scale(1.1);
        filter: grayscale(0%);
    }

.peb-content {
    padding: 0 60px;
    background: var(--accent-cyan);
    color: #fff;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: -40px; /* Overlap effect */
    z-index: 2;
    box-shadow: -20px 20px 0 var(--bg-color);
}

    .peb-content h2 {
        font-size: 3rem;
        margin-bottom: 30px;
    }

    .peb-content p {
        color: #fff;
        opacity: 0.8;
        font-weight: 600;
        margin-bottom: 40px;
    }

.peb-btn {
    border: 2px solid #fff;
    padding: 15px 30px;
    width: max-content;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}

    .peb-btn:hover {
        background: #000;
        color: var(--accent-cyan);
    }



/* --- ANIMATION CLASSES --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

    .fade-in-up.visible {
        opacity: 1;
        transform: translateY(0);
    }
/* --- ANIMATION CLASSES --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

    .fade-in-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {


    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .peb-section {
        grid-template-columns: 1fr;
    }

    .peb-content {
        margin: 0;
        height: auto;
        padding: 60px;
        box-shadow: none;
    }

    .peb-image {
        height: 50vh;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        flex-direction: column;
        border: none;
    }

    .stat-box {
        border-right: none;
        border-bottom: 1px solid var(--grid-line);
    }

    .cursor-dot, .cursor-outline {
        display: none;
    }
    /* No custom cursor on touch */
    * {
        cursor: auto;
    }
}
/* --- RESET & VARIABLES --- */
:root {
    --primary-dark: #111111; /* Deep Black/Dark Grey */
    --secondary-dark: #1f1f1f; /* Slightly lighter dark */
    --primary-light: #f4f4f4; /* Off-white */
    --accent-gold: #1373A1; /* Premium Gold */
    --accent-orange: #1373A1; /* Industrial Orange */
    --text-dark: #333333;
    --text-light: #ffffff;
    --text-main: #ffffff;
    --text-muted: #888888;
    --accent-orange: #1373A1; /* Safety Orange */
    --accent-cyan: #1373A1; /* Electric Blue */
    --border-color: #333;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --grid-line: #1373A1;
    --bg-color: #0a0a0a;
}
/* --- CUSTOM CURSOR --- */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 11px;
    height: 11px;
    background-color: var(--accent-orange);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 3px solid #ED1C24;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Custom cursor */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

/* --- UTILITY CLASSES --- */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--text-light);
}

.section-padding {
    padding: 80px 0;
}

/* Diagonal Clip Path for Transitions */
.clip-diagonal-top {
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
}

.clip-diagonal-bottom {
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
}

.clip-diagonal-both {
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}

/* --- HEADER --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 2px solid var(--accent-orange);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 90px;
   
}
 

.nav-menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

    .nav-menu a {
        color: var(--text-light);
        font-weight: 500;
        font-size: 0.9rem;
        position: relative;
    }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent-gold);
            transition: var(--transition);
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

.btn-enquire {
    background: var(--accent-orange);
    color: white;
    padding: 10px 25px;
    font-weight: 700;
    border-radius: 30px;
    border: 2px solid var(--accent-orange);
}

    .btn-enquire:hover {
        background: transparent;
        color: var(--accent-orange);
    }

.mobile-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- TOP INFO BAR --- */
.top-info {
    background: var(--primary-dark);
    color: #ccc;
    padding: 8px 0;
    font-size: 0.8rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    transform: translateY(-100%); /* Hidden initially or overlay */
}

/* --- HERO SLIDER --- */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 60px; /* Offset for fixed header */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

    .slide.active {
        opacity: 1;
        z-index: 2;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.5);
    }

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    width: 80%;
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease 0.5s;
}

.hero-subtitle {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease 0.7s;
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease 0.9s;
}

.btn-read-more {
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0;
    transition: all 1s ease 1.1s;
}

    .btn-read-more:hover {
        background: var(--accent-orange);
        border-color: var(--accent-orange);
        transform: scale(1.05);
    }

/* Trigger animations when active */
.slide.active .hero-title,
.slide.active .hero-subtitle,
.slide.active .hero-desc,
.slide.active .btn-read-more {
    opacity: 1;
    transform: translateY(0);
}

/* --- MARQUEE --- */
.marquee-section {
    background: var(--primary-dark);
    color: white;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 10;
}

.marquee-container {
    display: inline-block;
    animation: scroll-left 20s linear infinite;
}

/* PAUSE ON HOVER */
.marquee-section:hover .marquee-container {
    animation-play-state: paused;
}

.marquee-item {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin: 0 30px;
    text-transform: uppercase;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- ABOUT / VISION / MISSION (Light Theme) --- */
.about-section {
    background: var(--primary-light);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card-box {
    background: white;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

    .card-box:hover {
        transform: translateY(-10px);
        border-left: 4px solid var(--accent-orange);
    }

.card-icon {
    font-size: 2rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.card-box h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.card-box p {
    color: #666;
    font-size: 0.95rem;
}

.card-box ul li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

/* --- WHO WE ARE (Split Layout) --- */
.split-section {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.split-img {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.split-text {
    flex: 1;
    min-width: 300px;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 40px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 5;
}

    .experience-badge span {
        font-size: 3rem;
        font-weight: 700;
        display: block;
        line-height: 1;
    }

/* --- STATS (Dark) --- */
.stats-section {
    background: var(--primary-dark);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.stat-item h2 {
    font-size: 3.5rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.stat-item p {
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.trust-text {
    max-width: 700px;
    margin: 0 auto;
    color: #ccc;
    line-height: 1.8;
}

/* --- WHY CHOOSE US --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.feature-item {
    background: white;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

    .feature-item:hover {
        background: var(--primary-dark);
        color: white;
        transform: scale(1.02);
    }

    .feature-item i {
        color: var(--accent-orange);
        margin-top: 5px;
    }

/* --- WHY PEB --- */
.peb-section {
    background: var(--primary-dark);
    color: white;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
    padding-top: 120px;
    padding-bottom: 80px;
}

.peb-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left; color:#fff;
}

.peb-btn {
    margin-top: 30px;
    display: inline-block;
    background: white;
    color: var(--primary-dark);
    padding: 12px 35px;
    font-weight: 700;
    border-radius: 30px;
}

    .peb-btn:hover {
        background: #0A0A0A; color:#fff;
    }

/* --- PARTNERS --- */
.partners-section {
    background: white;
    padding: 60px 0;
}

.partners-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.partner-logo {
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-weight: bold;
    font-size: 0.8rem;
    transition: var(--transition);
}

    .partner-logo:hover {
        border: 2px solid #000;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: var(--transition);
    }

/* --- CTA --- */
.cta-section {
    background: var(--accent-orange);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-btn {
    background: white;
    color: var(--accent-orange);
    padding: 15px 40px;
    font-weight: 700;
    border-radius: 30px;
    display: inline-block;
    margin-top: 20px;
}

    .cta-btn:hover {
        background: var(--primary-dark);
        color: white;
    }

/* --- FOOTER --- */
footer {
    background: #0a0a0a;
    color: #888;
    padding-top: 80px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    border-bottom: 1px solid #222;
    padding-bottom: 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 12px; 
}
    .footer-col ul li a {
        color: #fff;
        padding-left: 5px;
    }

        .footer-col ul li a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

            .footer-social a {
                width: 35px;
                height: 35px;
                background: #222;
                color: white;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
            }

                .footer-social a:hover {
                    background: var(--accent-orange);
                }

        .contact-details div {
            margin-bottom: 15px;
            display: flex;
            gap: 10px;
        }

        .contact-details i {
            color: var(--accent-gold);
            margin-top: 4px;
        }

        .copyright {
            text-align: center;
            padding: 20px 0;
            font-size: 0.8rem;
        }
        /* --- ANIMATION ON SCROLL --- */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

            .reveal.visible {
                opacity: 1;
                transform: translateY(0);
            }
        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            /* Simplified for demo */
            .mobile-toggle {
                display: block;
                position: absolute;
                right: 20px;
                top: 20px;
                z-index: 1002;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.5rem;
            }

            .split-section {
                flex-direction: column;
            }

            .experience-badge {
                position: relative;
                bottom: auto;
                right: auto;
                width: max-content;
                margin: -40px auto 0;
            }
        }
